d9982c976e2b61e0c36929e5d615a9395eeb8e11,community/kernel/src/main/java/org/neo4j/unsafe/batchinsert/DirectRecordAccessSet.java,DirectRecordAccessSet,DirectRecordAccessSet,#NeoStores#,57

Before Change


        Loaders loaders = new Loaders( neoStores );
        NodeStore nodeStore = neoStores.getNodeStore();
        PropertyStore propertyStore = neoStores.getPropertyStore();
        RelationshipStore relationshipStore = neoStores.getRelationshipStore();
        RecordStore<RelationshipGroupRecord> relationshipGroupStore = neoStores.getRelationshipGroupStore();
        PropertyKeyTokenStore propertyKeyTokenStore = neoStores.getPropertyKeyTokenStore();
        RelationshipTypeTokenStore relationshipTypeTokenStore = neoStores.getRelationshipTypeTokenStore();

After Change



    public DirectRecordAccessSet( NeoStores neoStores )
    {
        this(
                neoStores.getNodeStore(),
                neoStores.getPropertyStore(),
                neoStores.getRelationshipStore(),
                neoStores.getRelationshipGroupStore(),
                neoStores.getPropertyKeyTokenStore(),
                neoStores.getRelationshipTypeTokenStore(),
                neoStores.getLabelTokenStore(),
                neoStores.getSchemaStore() );
    }

    public DirectRecordAccessSet(
            RecordStore<NodeRecord> nodeStore,